home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: 500 MB Amiga Software / 500 MB Amiga Software - Euber 130 - Amiga Games Disc & Mag.iso / userbox / publicdomain / toolmanager / scripts / playsample.rexx < prev    next >
OS/2 REXX Batch file  |  1994-10-18  |  1KB  |  26 lines

  1. /*********************************************************/
  2. /*                                                       */
  3. /* rexx:PlaySample.rexx  V1.0                            */
  4. /*                                                       */
  5. /* ARexx script for UPD sound daemon                     */
  6. /*                                                       */
  7. /* © 1991 Stefan Becker                                  */
  8. /*                                                       */
  9. /* ToolManager configuration file entry for this script: */
  10. /*                                                       */
  11. /* CLI:                                                  */
  12. /* Alias    = Play Sample                                */
  13. /* RealName = rx PlaySample                              */
  14. /* #                                                     */
  15. /*                                                       */
  16. /*********************************************************/
  17.  
  18. /* Parse command line */
  19. PARSE ARG cmdline
  20.  
  21. /* Send message to UPD's ARexx port */
  22. ADDRESS PLAY 'file ' cmdline
  23.  
  24. /* Exit script */
  25. RETURN 0
  26.